- Notifications
You must be signed in to change notification settings - Fork 5.8k
/
Copy path925. Long Pressed Name_test.go
78 lines (62 loc) · 1.06 KB
/
925. Long Pressed Name_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package leetcode
import (
"fmt"
"testing"
)
typequestion925struct {
para925
ans925
}
// para 是参数
// one 代表第一个参数
typepara925struct {
namestring
typedstring
}
// ans 是答案
// one 代表第一个答案
typeans925struct {
onebool
}
funcTest_Problem925(t*testing.T) {
qs:= []question925{
{
para925{"alex", "aaleex"},
ans925{true},
},
{
para925{"alex", "alexxr"},
ans925{false},
},
{
para925{"alex", "alexxxxr"},
ans925{false},
},
{
para925{"alex", "alexxxxx"},
ans925{true},
},
{
para925{"saeed", "ssaaedd"},
ans925{false},
},
{
para925{"leelee", "lleeelee"},
ans925{true},
},
{
para925{"laiden", "laiden"},
ans925{true},
},
{
para925{"kikcxmvzi", "kiikcxxmmvvzz"},
ans925{false},
},
}
fmt.Printf("------------------------Leetcode Problem 925------------------------\n")
for_, q:=rangeqs {
_, p:=q.ans925, q.para925
fmt.Printf("【input】:%v 【output】:%v\n", p, isLongPressedName(p.name, p.typed))
}
fmt.Printf("\n\n\n")
}